home *** CD-ROM | disk | FTP | other *** search
- /* This is a mountlist entry for the SCSI tape handler provided with */
- /* MRBackup. Pay particular attention to the StartUp message. Its */
- /* format is: */
- /* "<buffer_size>/<device_name>/<unit>/<luno>/<flags>" */
- /* */
- /* where */
- /* <buffer_size> is the total amount of buffer memory, specified */
- /* in K (K = 1024); */
- /* */
- /* <device_name> is the SCSI device driver name; */
- /* */
- /* <unit> is the SCSI unit number; */
- /* */
- /* <luno> is the SCSI logical unit number (not currently used but */
- /* must be set to zero); */
- /* */
- /* <flags> is a set of bits controlling certain tape drive options */
- /* The bit values, which may be added together are: */
- /* */
- /* 1 asynchronous mode, 0 = synchronous mode */
- /* 2 use on-board buffer, 0 = don't use on-board buffer */
- /* 4 Introduce 2 ms delay before each read/write. This may */
- /* help prevent bus lockup in async mode. */
- /* 8 Introduce 4 ms delay (additive). */
- /* */
- /* Example: to enable async mode and the on-board buffer, the */
- /* <flags> value would be 3 (1 + 2). */
- /* */
- /* Other flag bits will be provided as new features are added. */
-
- MRTAPE: Handler = l:mrtape-handler
- StartUp = "60/scsi.device/4/0/2"
- Stacksize = 4000
- Priority = 10
- GlobVec = -1
- #
-
- /* Synchronous entry: */
- MRTAPES: Handler = l:mrtape-handler
- StartUp = "60/scsi.device/4/0/3"
- Stacksize = 4000
- Priority = 10
- GlobVec = -1
- #
-